Current Location: Home> Function Categories> atanh

atanh

Antihyperbolic tangent
Name:atanh
Category:math
Programming Language:php
One-line Description:Inverse hyperbolic tangent.

Definition and usage

atanh() function returns an inverse hyperbolic tangent of an angle.

Example

Returns the inverse hyperbolic tangent value of different values:

 <?php
echo ( atanh ( M_PI_4 ) ) ;
echo ( atanh ( 0.50 ) ) ;
echo ( atanh ( - 0.50 ) ) ;
echo ( atanh ( 1 ) ) ;
echo ( atanh ( - 1 ) ) ;
?>

Try it yourself

grammar

 atanh ( x )
parameter describe
x Required. A number.

illustrate

atanh() function returns the inverse hyperbolic tangent value of x , that is, the value whose hyperbolic tangent is x .

Similar Functions
  • Reverse cosine acos

    acos

    Reversecosine
  • Find the minimum value min

    min

    Findtheminimumvalue
  • Round floating point numbers round

    round

    Roundfloatingpointnu
  • Natural logarithm log

    log

    Naturallogarithm
  • Round the division result intdiv

    intdiv

    Roundthedivisionresu
  • Antihyperbolic tangent atanh

    atanh

    Antihyperbolictangen
  • Convert hexadecimal to decimal hexdec

    hexdec

    Converthexadecimalto
  • Find the maximum value max

    max

    Findthemaximumvalue
Popular Articles